home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000392_news@columbia.edu_Wed May 17 00:39:36 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03115
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 16 May 1995 20:39:44 -0400
  3. Received: by apakabar.cc.columbia.edu id AA14722
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 16 May 1995 20:39:43 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: HELP Call Complete but it isn't
  9. Date: 17 May 1995 00:39:36 GMT
  10. Organization: Columbia University
  11. Lines: 23
  12. Message-Id: <3pbgk8$e9o@apakabar.cc.columbia.edu>
  13. References: <3p85se$khb@ralph.vnet.net>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3p85se$khb@ralph.vnet.net>,  <flatlndr@vnet.net> wrote:
  18. >I'm having some trouble with a kermit script. The phone dials 
  19. >fine but after the modem's train and connect kermit spits out "Call 
  20. >Complete" and ignores the rest of the script. The script I'm using is below.
  21. >
  22. >SET this, SET that...
  23. >...
  24. >DIAL 5551234  
  25. >INPUT 10 CONNECT
  26. >IF FAILURE GOTO BEGIN
  27. >
  28. DIAL handles dialing.  You don't need script commands for this.
  29. DIAL already read the CONNECT message, so your INPUT command will
  30. always fail.  Change to:
  31.  
  32. SET this, SET that...
  33. ...
  34. DIAL 5551234  
  35. IF FAILURE GOTO BEGIN
  36.  
  37. - Frank
  38.  
  39. x